home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Various / Demo-Utils #23 (199x)(Erler, Wolfgang).zip / Demo-Utils #23 (199x)(Erler, Wolfgang).adf / devs / mountlist next >
Text File  |  1992-07-26  |  3KB  |  136 lines

  1.  
  2.  
  3. NEWCON:       Handler = L:Newcon-Handler
  4.        Priority = 5
  5.        StackSize = 1000
  6. #
  7.  
  8. /*  This is an example of an alternative type of non-filing device mount,
  9.     used to mount the non-buffered serial handler
  10. */
  11.  
  12. AUX:       Handler = L:Aux-Handler
  13.            Stacksize = 6000
  14.            Priority = 5
  15.        GlobVec = -1
  16. #
  17.  
  18.  
  19. PIPE:      Handler = L:ConHandler
  20.            Stacksize = 6000
  21.            Priority = 5
  22.        GlobVec = -0
  23.  
  24. #
  25.  
  26. /* This is an example of a non-filing system mount using a handler written
  27.    in C.
  28. */
  29.  
  30. SPEAKER:   Handler = L:Speak-Handler
  31.            Stacksize = 6000
  32.            Priority = 5
  33.        GlobVec = -1
  34. #
  35.  
  36. /* This is an example of a mount list entry for using the recoverable 
  37.    ram disk.  Depending on the amount of memory you wish to devote to
  38.    it, you may want to change the HighCyl value.
  39. */
  40.  
  41. CARD:      Device = ramdrive.device
  42.            Unit   = 0
  43.            Flags  = 0
  44.            Surfaces  = 2
  45.            BlocksPerTrack = 11
  46.            Reserved = 2
  47.            Interleave = 0
  48.            LowCyl = 0  ;  HighCyl = 79
  49.            Buffers = 5
  50.            BufMemType = 1
  51. #
  52.  
  53.  
  54.  
  55. VD0:       Device = ramdrive.device
  56.            Unit   = 0
  57.            Flags  = 0
  58.            Surfaces  = 2
  59.            BlocksPerTrack = 11
  60.            Reserved = 2
  61.            Interleave = 0
  62.            LowCyl = 0  ;  HighCyl = 79
  63.            Buffers = 5
  64.            BufMemType = 1
  65. #
  66.  
  67. VD1:       Device = ramdrive.device
  68.            Filesystem = l:FastFileSystem
  69.            Unit   = 1
  70.            Flags  = 0
  71.            Surfaces  = 2
  72.            BlocksPerTrack = 11
  73.            Reserved = 2
  74.            Interleave = 0
  75.            LowCyl = 0  ;  HighCyl = 39
  76.            Buffers = 25
  77.            BufMemType = 1
  78. #
  79.  
  80. /* Mount a 5.25" disk drive to be mounted as DF2: */
  81.  
  82. DF2:       Device = trackdisk.device
  83.            Unit   = 2
  84.            Flags  = 1
  85.            Surfaces  = 2
  86.            BlocksPerTrack = 11
  87.            Reserved = 2
  88.        PreAlloc = 11
  89.            Interleave = 0
  90.            LowCyl = 0  ;  HighCyl = 39
  91.            Buffers = 20
  92.            BufMemType = 3
  93. #
  94.  
  95. /* An example mount entry using the fast file system with a partition
  96.    of the hard disk using the 2090 disk controller.  PREP has been
  97.    used to create the first partition (up to cylinder 20).  The second
  98.    partition is MOUNTed, using the following entry:
  99.    (The hard disk is not included; this is only an example.)
  100. */
  101.  
  102. FAST:      Device = hddisk.device
  103.        FileSystem = l:FastFileSystem
  104.        Unit   = 1
  105.            Flags  = 0
  106.            Surfaces  = 4
  107.            BlocksPerTrack = 17
  108.            Reserved = 2
  109.            Interleave = 0
  110.            LowCyl = 21  ;  HighCyl = 800
  111.            Buffers = 30
  112.        GlobVec = -1
  113.            BufMemType = 1
  114. #
  115.  
  116.  
  117. /* Let's say you have an A2000 with an internal drive, and an external
  118.    drive, and you want to refer to the external drive as DF1: as well
  119.    as DF2:   Well, this MountList entry will do it for you.  This technique
  120.    can be extended to provide you with a drive A: and B: if you really
  121.    want.
  122. */
  123.  
  124. DF1:       Device = trackdisk.device
  125.            Unit   = 2
  126.            Flags  = 1
  127.            Surfaces  = 2
  128.            BlocksPerTrack = 11
  129.            Reserved = 2
  130.        PreAlloc = 11
  131.            Interleave = 0
  132.            LowCyl = 0  ;  HighCyl = 79
  133.            Buffers = 20
  134.            BufMemType = 3
  135. #
  136.